        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f4f4f4;
            color: #333;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #e10600;
            transition: color 0.3s;
        }
        
        a:hover {
            color: #ff4d44;
        }
        
        /* Header Styles */
        header {
            background-color: #e10600;
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .logo {
            font-size: 2rem;
            font-weight: bold;
            display: flex;
            align-items: center;
        }
        
        .logo span {
            background: white;
            color: #e10600;
            padding: 0 5px;
            margin-right: 5px;
            border-radius: 4px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 20px;
        }
        
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }
        
        nav ul li a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 30px;
        }
        
        /* Headline News Collage */
        .headline-collage {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 200px);
            gap: 15px;
            margin-bottom: 30px;
            grid-column: 1 / -1;
        }
        
        .collage-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .collage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        
        .collage-item:first-child {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
        }
        
        .collage-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .collage-item:hover img {
            transform: scale(1.05);
        }
        
        .collage-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            padding: 20px;
        }
        
        .collage-badge {
            background: #e10600;
            color: white;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: bold;
            display: inline-block;
            margin-bottom: 8px;
        }
        
        .collage-content h3 {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }
        
        .collage-content p {
            font-size: 0.85rem;
            opacity: 0.9;
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        
        /* News Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            grid-column: 1 / 2;
        }
        
        .news-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        
        .news-content {
            padding: 20px;
        }
        
        .news-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #1e1e1e;
        }
        
        .news-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 15px;
        }
        
        .news-date {
            color: #888;
            font-size: 0.85rem;
            display: block;
            margin-bottom: 10px;
        }
        
        .read-more {
            display: inline-block;
            background: #e10600;
            color: white;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 500;
            transition: background 0.3s;
            font-size: 0.9rem;
        }
        
        .read-more:hover {
            background: #ff4d44;
            color: white;
        }
        
        /* Sidebar */
        .sidebar {
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            grid-column: 2 / 3;
            grid-row: 2 / 3;
        }
        
        .sidebar h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e10600;
            color: #1e1e1e;
        }
        
        .upcoming-events {
            list-style: none;
        }
        
        .upcoming-events li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        
        .upcoming-events li:last-child {
            border-bottom: none;
        }
        
        .event-date {
            font-weight: bold;
            color: #e10600;
            display: block;
        }
        
        /* Last Race Results */
        .race-results {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .race-results h4 {
            margin-bottom: 15px;
            color: #1e1e1e;
            display: flex;
            align-items: center;
        }
        
        .race-results h4 i {
            color: #e10600;
            margin-right: 10px;
        }
        
        .result-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
            align-items: center;
        }
        
        .result-row:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .position {
            font-weight: bold;
            width: 30px;
            text-align: center;
            background: #f4f4f4;
            border-radius: 4px;
            padding: 5px;
        }
        
        .position-1 {
            background: #fae9b3;
            color: #8a6900;
        }
        
        .position-2 {
            background: #e8e8e8;
            color: #555;
        }
        
        .position-3 {
            background: #e9d3b8;
            color: #7a5c32;
        }
        
        .driver-info {
            flex-grow: 1;
            margin-left: 15px;
        }
        
        .driver-name {
            font-weight: 500;
        }
        
        .driver-team {
            font-size: 0.8rem;
            color: #888;
        }
        
        .result-time {
            font-weight: 500;
            color: #333;
        }
        
        /* Driver of the Day */
        .driver-of-day {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .driver-of-day img {
            width: 100px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid #e10600;
        }
        
        .driver-of-day h4 {
            color: #e10600;
            margin-bottom: 5px;
        }
        .driver-of-day p {
            color: #0746a5;
            font-weight: bold;
        }
        /* Interactive Poll */
        .poll {
            background: white;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        
        .poll h4 {
            margin-bottom: 15px;
            color: #1e1e1e;
        }
        
        .poll-option {
            margin-bottom: 10px;
            padding: 10px;
            background: #f9f9f9;
            border-radius: 4px;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .poll-option:hover {
            background: #f0f0f0;
        }
        
        .poll-option.selected {
            background: #e10600;
            color: white;
        }
        
        /* F1 Countdown */
        .countdown {
            background: linear-gradient(to right, #e10600, #9b0000);
            color: white;
            border-radius: 8px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
        }
        
        .countdown h4 {
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        
        .countdown-timer {
            display: flex;
            justify-content: space-around;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .countdown-unit {
            display: flex;
            flex-direction: column;
        }
        
        .countdown-value {
            font-size: 2rem;
        }
        
        .countdown-label {
            font-size: 0.8rem;
            font-weight: normal;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .container {
                grid-template-columns: 1fr;
            }
            
            .headline-collage {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 200px);
            }
            
            .collage-item:first-child {
                grid-column: 1;
                grid-row: 1;
            }
            
            .sidebar {
                grid-column: 1;
                grid-row: 3;
            }
            
            .header-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 15px;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 10px;
            }
        }
        
        @media (max-width: 600px) {
            .news-grid {
                grid-template-columns: 1fr;
            }
        }